home *** CD-ROM | disk | FTP | other *** search
/ Revista CD Expert 32 / CD Expert nº 32.iso / Emergency / emergyus.exe / BC5 / EXAMPLES / VDBT / TDBCLASS / readme.txt
Text File  |  1997-03-03  |  1KB  |  29 lines

  1. ----------------------------------------------------------------------------
  2.  Borland C++
  3.  Copyright (c) 1996 Borland International Inc.  All Rights Reserved.
  4. ----------------------------------------------------------------------------
  5.  
  6. TITLE:
  7.    TDBCLASS - TDB-Access classes Application
  8.  
  9. PURPOSE:
  10.    This program demonstrates a few of the new TDB-data access classes.
  11.    The new classes are TDBTable, TDBDataSource, TDBQueary, TDBBatchMove,
  12.    TDBDatabase and TDBStoredProc.  To see these new classes look in the
  13.    include\vdbt\dbacc.h file.  These classes are to be used when you are
  14.    using the VDBT controls in a window instead of a dialog and you want
  15.    to connect the data aware controls to the data access controls.  This
  16.    program uses the TDBTable and TDBDataSource to connect to a very
  17.    simple database.  It has a TDBEdit and TDBNavigator that are
  18.    contected to the TDBDataSource and used to scroll through the
  19.    database displaying one of the fields in it.  In this program since
  20.    the C++ classes are created in the constructor, the controls are
  21.    listed on the child list of the TWindow class so it is not neccassay
  22.    to call the Create member function of these classes.  If they were
  23.    created outside of the constructor, it would be neccassary to call
  24.    the Create functions.
  25.  
  26. COMMENTS:
  27.  
  28.  
  29.